home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / LOCALIZE.PAK / LOCALIZE.CPP next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  71 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectComponents - (C) Copyright 1994 by Borland International
  3. // Localization test
  4. //----------------------------------------------------------------------------
  5. #include <winsys/wsysinc.h>
  6. #include <stdio.h>
  7. #include <winsys/lclstrng.h>
  8. #include "localize.rh"
  9.  
  10. #if !defined(BI_PLAT_WIN32) // WINNLS defines these for WIN32
  11. # include "olenls.h"
  12. #endif
  13.  
  14. TLangId TLocaleString::NativeLangId = 0x0009; // = LANG_ENGLISH;
  15.  
  16. #define WM_USERSTAT (WM_USER + 100)
  17.  
  18. bool CALLBACK __export
  19. DlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
  20. {
  21.   if (msg == WM_INITDIALOG) {
  22.     return 1;
  23.   } else if (msg == WM_COMMAND) {
  24.     ::PostMessage(hDlg, WM_USERSTAT, wParam, lParam);
  25.     return 1;
  26.   } else if (msg == WM_CLOSE) {
  27.     ::PostMessage(hDlg, WM_USERSTAT, IDABORT, 0);
  28.     return 1;
  29.   } else if (msg == WM_DESTROY) {
  30.     ::PostMessage(hDlg, WM_USERSTAT, IDABORT, 0);
  31.     return 1;
  32.   }
  33.   return 0;
  34. }
  35.  
  36. int PASCAL
  37. WinMain(HINSTANCE hInst, HINSTANCE/*prev*/, char far* /*cmdLine*/, int/*show*/)
  38. {
  39.   HWND hWnd = ::CreateDialog(hInst, MAKEINTRESOURCE(IDD_OUT), 0, (DLGPROC)DlgProc);
  40.   if (!hWnd) {
  41.     ::MessageBox(0, "Could Not Create Dialog Box", "Error", MB_OK);
  42.     return 1;
  43.   }
  44.   for(;;) {
  45.     MSG msg;
  46.     int id = 0;
  47.     while (!id && ::GetMessage(&msg, 0, 0, 0)) {
  48.       if (msg.message == WM_USERSTAT)
  49.         id = msg.wParam;
  50.       else
  51.         ::IsDialogMessage(hWnd, &msg);
  52.     }
  53.     if (id == IDABORT || id == IDOK)
  54.       break;
  55.     if (id & 0x8000) {
  56.       id &= ~0x8000;
  57.       for (int w = IDC_FIRSTWORD; w <= IDC_LASTWORD; w++) {
  58.         char buf[50];
  59. //      TLocaleString word = (const char*)buf;
  60.         TLocaleString word;
  61.         word = (const char*)buf;
  62.         ::GetDlgItemText(hWnd, w, buf, sizeof(buf)-1);
  63.         const char* xlat = word.Translate((TLangId)id);
  64.         ::SetDlgItemText(hWnd, w + IDC_FIRSTXLAT - IDC_FIRSTWORD, xlat);
  65.       }
  66.     }
  67.   }
  68.   ::DestroyWindow(hWnd);
  69.   return 0;
  70. }
  71.